home *** CD-ROM | disk | FTP | other *** search
- _root.pause_btn._visible = _root.quit_btn._visible = false;
- name_txt.restrict = "a-z 0-9.:\\-";
- name_txt.text = _root.game_so.data.playerName;
- Selection.setFocus(name_txt);
- Selection.setSelection(name_txt.length,name_txt.length);
- ok_btn.onRelease = function()
- {
- if(name_txt.length > 0)
- {
- _root.game_so.data.playerName = name_txt.text;
- }
- _root.nextFrame();
- };
- ok_btn.onKeyDown = function()
- {
- if(Key.getCode() == 13)
- {
- Key.removeListener(this);
- this.onRelease();
- }
- };
- Key.addListener(ok_btn);
-